home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / 5 / MAZE__ / MAZE.C < prev    next >
C/C++ Source or Header  |  1991-12-26  |  465b  |  27 lines

  1. /******************************************************************************
  2.  
  3.   Maze.c
  4.  
  5.      A Maze main file for writing programs with the
  6.      THINK Class Library
  7.  
  8.   Copyright ⌐ 1990 Symantec Corporation.  All rights reserved.
  9.   
  10. ******************************************************************************/
  11.  
  12.  
  13. #include "CMazeApp.h"
  14.  
  15.  
  16. void main()
  17.  
  18. {
  19.     CMazeApp    *MazeApp;                    
  20.  
  21.     MazeApp = new CMazeApp;
  22.     
  23.     MazeApp->IMazeApp();
  24.     MazeApp->Run();
  25.     MazeApp->Exit();
  26. }
  27.